home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 4537 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.5 KB

  1. Path: news.ov.com!news
  2. From: glenn@ov.com (Fletcher.Glenn@ov.com)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Are flow charts still used?
  5. Date: 5 Feb 1996 17:38:43 GMT
  6. Organization: OpenVision
  7. Message-ID: <4f5fb3$oll@spanky.pls.ov.com>
  8. References: <4etj1g$92g@comet.connix.com>
  9. Reply-To: glenn@ov.com
  10. NNTP-Posting-Host: foghorn.pls.ov.com
  11.  
  12. In article 92g@comet.connix.com, Scott Hawley <shawley@connix.com> writes:
  13. >Interesting question, I have been programming for about 17 Years now
  14. >and have NEVER drew a flowchart except in school, or after the
  15. >code was written to show how it works, It has never worked for
  16. >design. I think it could work for High level deging but detail of
  17. >software changes too much even while designing for a flowchart to
  18. >be of much use. (IMO).
  19. >
  20. >Anybody that has been programming in the "REAL WORLD" use flowcharts?
  21. >have the helped or just slowed up your work?
  22. >
  23.  
  24. Once in a great while, I use mid-level flowcharts to work out the details
  25. of complicated algorithms before I start to code.  This helps me visualize
  26. what sort of data structures are required, and it helps work out the most
  27. efficient sequence of operations.
  28.  
  29. You are right that most of the time you can flowchart in your head to 
  30. work out code before you write it, but sometimes, there are too many
  31. things to keep track of at one time.  If you plunge into coding when
  32. you don't have a clear idea of the goal, you will either end up
  33. with spaghetti code, or perhaps having to rewrite the code.
  34.  
  35.             Fletcher.Glenn@ov.com
  36.  
  37.